home *** CD-ROM | disk | FTP | other *** search
/ ETO Development Tools 2 / ETO Development Tools 2.iso / Tools - Objects / MacApp / MacApp CD Release / MacApp 2.0.1 (Many Libraries) / Examples / Calc / CalcUtilities.r < prev    next >
Encoding:
Text File  |  1990-10-25  |  1.4 KB  |  53 lines  |  [TEXT/MPS ]

  1. /********************************************************************************/
  2. /*                                                                                */
  3. /*    File:            CalcUtilities.r                                                 */
  4. /*                                                                                */
  5. /*    Description:    Separately compiled resources for Calc.                       */
  6. /*                                                                                */
  7. /*                                                                                */
  8. /*    Copyright © 1985 - 1990 by Apple Computer, Inc.  All rights reserved.          */
  9. /********************************************************************************/
  10.  
  11. /* • Auto-Include the requirements for this source */
  12.  
  13. #ifndef __TYPES.R__
  14. #include "Types.r"
  15. #endif
  16.  
  17.  
  18. #define kColumnSizingCursor    256        /* ID of the column sizing cursor resource */
  19. #define kRowSizingCursor    257        /* ID of the row sizing cursor resource */
  20.  
  21.  
  22.  
  23. /*--------------------------------------------------------------------------------
  24.  Cursors
  25. --------------------------------------------------------------------------------*/
  26. /* Row Sizing Cursor */
  27. resource 'CURS' (kRowSizingCursor,
  28. #if qNames
  29. "RowSizing",
  30. #endif
  31.     purgeable) {
  32.     $"0000 0080 0140 0220 0630 0220 0220 3FFE"
  33.     $"3FFE 3FFE 0220 0220 0630 0220 0140 0080",
  34.     $"0000 0080 0140 0220 0630 0220 0220 3FFE"
  35.     $"3FFE 3FFE 0220 0220 0630 0220 0140 0080",
  36.     {8, 8}
  37. };
  38.  
  39. /* Column Sizing Cursor */
  40. resource 'CURS' (kColumnSizingCursor,
  41. #if qNames
  42. "ColSizing",
  43. #endif
  44.     purgeable) {
  45.     $"0000 0000 0380 0380 0380 0BA0 1FF0 2388"
  46.     $"4384 2388 1FF0 0BA0 0380 0380 0380 0000",
  47.     $"0000 07C0 07C0 07C0 0FE0 1FF0 3FF8 7FFC"
  48.     $"FFFE 7FFC 3FF8 1FF0 0FE0 07C0 07C0 07C0",
  49.     {8, 7}
  50. };
  51.  
  52.  
  53.